type math/rand.lockedSource

12 uses

	math/rand (current package)
		rand.go#L86: 	if lk, ok := r.src.(*lockedSource); ok {
		rand.go#L274: 	case *lockedSource:
		rand.go#L330: 		r = New(new(lockedSource))
		rand.go#L410: 		if _, ok := orig.src.(*lockedSource); ok {
		rand.go#L423: 	r := New(new(lockedSource))
		rand.go#L510: type lockedSource struct {
		rand.go#L515: func (r *lockedSource) Int63() (n int64) {
		rand.go#L522: func (r *lockedSource) Uint64() (n uint64) {
		rand.go#L529: func (r *lockedSource) Seed(seed int64) {
		rand.go#L536: func (r *lockedSource) seedPos(seed int64, readPos *int8) {
		rand.go#L545: func (r *lockedSource) seed(seed int64) {
		rand.go#L554: func (r *lockedSource) read(p []byte, readVal *int64, readPos *int8) (n int, err error) {